home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1996 #14 / Monster Media No. 14 (April 1996) (Monster Media, Inc.).ISO / prog_bas / pclvbw10.zip / README.DOC < prev    next >
Text File  |  1996-02-15  |  858b  |  23 lines

  1. *** PCLVBW 1.0 Release Notes ***
  2.  
  3. (1) Always choose LEVEL_8 rather than LEVEL_14 in calling SioFIFO. Windows
  4. is slow, and LEVEL_14 only allows 2 additional characters before an overun.
  5.  
  6. (2) Be sure to copy PCLVBW.DLL to the directory in which you have installed
  7. Visual Basic so it can be used by the interpreter. Also copy MIO.DLL.
  8.  
  9. (3) The module SIOERROR.BAS will print the text associated with an error code
  10. returned from any of the PCLVBW functions.
  11.  
  12. (4) If you will be using the standard PC ports COM1 to COM4, they should be
  13. disabled from Windows's control becuase Windows "vitualizes" all ports it
  14. controls. For example, to disable Windows control of COM1 and COM3 (which
  15. share IRQ3), add
  16.  
  17.        COM1Base=0
  18.        COM1Irq=-1
  19.        COM3Base=0
  20.        COM3Irq=-1
  21.  
  22. to the [386Enh] section of SYSTEM.INI in the Windows directory.
  23.